home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / c / cpptut22.zip / PERSON.CPP < prev    next >
C/C++ Source or Header  |  1992-01-20  |  322b  |  12 lines

  1.                                      // Chapter 11 - Program 2
  2. #include <iostream.h>
  3. #include "person.h"
  4.  
  5.             // This method should never be called.  If it is ever
  6.             // called, it is considered an error.
  7. void
  8. person::display(void)
  9. {
  10.    cout << "person::display - missing subclass method\n";
  11. }
  12.